summaryrefslogtreecommitdiff
path: root/src/functiondelete.h
blob: 3545343da2a4b4f70d1095d88277310e13b71821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FUNCTION_DELETE_H
#define FUNCTION_DELETE_H

#include "function.h"

class FunctionDelete : public Function
{
public:
	FunctionDelete();
	virtual ~FunctionDelete();

	virtual Bu::String getName() const { return "delete"; }
	virtual void call( class GameState &gState );
};

#endif